ProductDetails
@objc(LSProductDetails)
final class ProductDetails
extension ProductDetails : CVarArg, CustomDebugStringConvertible, CustomStringConvertible, Equatable, Hashable, NSObjectProtocol
LicenseSpring Product details.
-
Product name.
Declaration
Swift
@objc var productName: String -
Product short code.
Declaration
Swift
@objc var productCode: String -
Authorization method of the product.
Declaration
Swift
@objc var authorizationMethod: AuthorizationMethod -
Is trial allowed for the product or not.
Declaration
Swift
@objc var isTrialAllowed: Bool -
Trial period in days.
Declaration
Swift
@objc var trialPeriod: Int -
Is overages allowed for the product or not.
Declaration
Swift
@objc var isOveragesAllowed: Bool -
Maximum overages count.
Declaration
Swift
@objc var maxOverages: Int -
Metadata JSON.
Declaration
Swift
@objc var metadata: Data? -
Company related to the license
Declaration
Swift
@objc var company: Company? -
Undocumented
Declaration
Swift
@objc init(productName: String, productCode: String, authorizationMethod: AuthorizationMethod)